home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / mgr / rmgr.arc / README < prev    next >
Encoding:
Text File  |  1991-03-08  |  1.9 KB  |  42 lines

  1.                             Howard Chu
  2.                             October 14, 1990
  3.  
  4. Howdy. This is rmgr, my program for managing multiple remote sessions
  5. thru a single communications line (e.g., a dial-up serial port). The
  6. header file rmgr.h tries to #include <mgr/term.h>, so you will need to
  7. have the MGR client library header files installed in a reasonable spot,
  8. like /usr/include/mgr. (Or just add the -Ipath option to the Makefile
  9. and fake it...)
  10.  
  11. This program is derived from Oliver Laumann's "screen" program, and has
  12. nearly the same system requirements as that program. (I.e., BSD sockets
  13. and pseudo-ttys are necessary.) Plus, obviously, the console you are
  14. sitting in front of must be running an MGR server for you to use this
  15. program at all.
  16.  
  17. I am calling this a beta-release, although the program is very stable
  18. and I don't expect many problems to crop up. (But read the man page,
  19. you may find that the "features" I note could hamper your use... You're
  20. welcome to tackle the two noted problems and tell me how it went.)
  21.   -- Howard
  22.     hyc@math.lsa.umich.edu
  23.  
  24. March 7, 1991
  25.  
  26. A couple more notes... there was a bug in the Other Window function, it
  27. didn't properly null-terminate the list of arguments passed to execvpe.
  28. (Thanks to Scott Bertilson, scott@poincare.geom.umn.edu for pointing this
  29. out and providing the fix.)
  30.  
  31. There is another bug which I haven't tried to fix - apparently setting
  32. a window into raw mode doesn't work, it stays in cbreak mode. The result
  33. is that you can't disable ^S/^Q flow control, making it tough to use
  34. emacs and such. The simple solution is to add an argument to disable
  35. flow control, the effect can be carried out by setting the stop and
  36. start chars to -1 in the SetMode routine. (This is what the original
  37. screen program does. I foolishly deleted that, not expecting to need it.
  38. At any rate, it's easy to fix, but I'm not doing it right now.) This
  39. will be my last posting from good ol' xxx.umich.edu, the movers are
  40. coming tomorrow to take me away.....
  41.   -- Howard
  42.